type net/http.http2responseWriterState

12 uses

	net/http (current package)
		h2_bundle.go#L4024: 		rws := &http2responseWriterState{}
		h2_bundle.go#L6295: 	rws := http2responseWriterStatePool.Get().(*http2responseWriterState)
		h2_bundle.go#L6297: 	*rws = http2responseWriterState{} // zero all the fields
		h2_bundle.go#L6543: 	rws *http2responseWriterState
		h2_bundle.go#L6553: type http2responseWriterState struct {
		h2_bundle.go#L6578: type http2chunkWriter struct{ rws *http2responseWriterState }
		h2_bundle.go#L6590: func (rws *http2responseWriterState) hasTrailers() bool { return len(rws.trailers) > 0 }
		h2_bundle.go#L6592: func (rws *http2responseWriterState) hasNonemptyTrailers() bool {
		h2_bundle.go#L6604: func (rws *http2responseWriterState) declareTrailer(k string) {
		h2_bundle.go#L6622: func (rws *http2responseWriterState) writeChunk(p []byte) (n int, err error) {
		h2_bundle.go#L6761: func (rws *http2responseWriterState) promoteUndeclaredTrailers() {
		h2_bundle.go#L6920: func (rws *http2responseWriterState) writeHeader(code int) {